home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / misc / vahunz.lha / vahunz / example / sepp.c < prev   
C/C++ Source or Header  |  1998-02-14  |  781b  |  36 lines

  1. /*
  2.  * sepp.c - This is the main program
  3.  */
  4.  
  5. /* Include some things from the standard library */
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8.  
  9. /* These variables hold some information about a person called Sepp */
  10. const char sepp_name[] = "Sepp";
  11. static int sepp_age = 78;
  12.  
  13. /* This views some information about the current status of Sepp */
  14. void print_sepp()
  15. {
  16.     printf("%s is %d years old.\n", sepp_name, sepp_age);
  17. }
  18.  
  19. /* This is the main function called when the program is started */
  20. int main(void)
  21. {
  22.     while (sepp_age < 83)
  23.     {
  24.         /* Simulate one year in the life of Sepp */
  25.         grow_older(sepp_name, &sepp_age);
  26.         print_sepp();
  27.     }
  28.  
  29.     /* Announce the bad news */
  30.     printf("\n%s died.\n", sepp_name);
  31.  
  32.     /* World ends here. */
  33.     exit(EXIT_SUCCESS);
  34. }
  35.  
  36.